home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / chrome / calendar.jar / content / calendar / calApplicationUtils.js next >
Text File  |  2007-12-16  |  7KB  |  163 lines

  1. /* -*- Mode: javascript; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  * ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Mozilla Calendar code.
  16.  *
  17.  * The Initial Developer of the Original Code is Eric Belhaire.
  18.  * Portions created by the Initial Developer are Copyright (C) 2003
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s): 
  22.  *   Matthew Willis <mattwillis@gmail.com>
  23.  *   Philipp Kewisch <mozilla@kewis.ch>
  24.  *   Simon Paquet <bugzilla@babylonsounds.com>
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. function openAboutDialog()
  41. {
  42.   const SUNBIRD_ID = "{718e30fb-e89b-41dd-9da7-e25a45638b28}";
  43.   var appInfo = Components.classes["@mozilla.org/xre/app-info;1"]
  44.                           .getService(Components.interfaces.nsIXULAppInfo);
  45.   var url = (appInfo.ID == SUNBIRD_ID) ?
  46.     "chrome://calendar/content/aboutDialog.xul" :
  47.     "chrome://messenger/content/aboutDialog.xul" ;
  48.   var name = "About";
  49. //@line 54 "/cygdrive/c/builds/tinderbox/Lt-Mozilla1.8/WINNT_5.2_Depend/mozilla/calendar/lightning/../base/src/calApplicationUtils.js"
  50.   window.openDialog(url, name, "modal,centerscreen,chrome,resizable=no");
  51. //@line 56 "/cygdrive/c/builds/tinderbox/Lt-Mozilla1.8/WINNT_5.2_Depend/mozilla/calendar/lightning/../base/src/calApplicationUtils.js"
  52. }
  53.  
  54. /**
  55.  * Opens the release notes page for this version of the application.
  56.  */
  57. function openReleaseNotes()
  58. {
  59.   const SUNBIRD_ID = "{718e30fb-e89b-41dd-9da7-e25a45638b28}";
  60.   var appInfo = Components.classes["@mozilla.org/xre/app-info;1"]
  61.                           .getService(Components.interfaces.nsIXULAppInfo);
  62.   if (appInfo.ID == SUNBIRD_ID) {
  63.     var appInfo = Components.classes["@mozilla.org/xre/app-info;1"]
  64.                             .getService(Components.interfaces.nsIXULAppInfo);
  65.     var sbs = Components.classes["@mozilla.org/intl/stringbundle;1"]
  66.                         .getService(Components.interfaces.nsIStringBundleService);
  67.     var bundle = sbs.createBundle("chrome://branding/locale/brand.properties");
  68.     var relNotesURL = bundle.formatStringFromName("releaseNotesURL",[appInfo.version],1)
  69.     launchBrowser(relNotesURL);
  70.   } else {
  71.     openFormattedRegionURL('app.releaseNotesURL');
  72.   }
  73. }
  74.  
  75. /**
  76.  * Opens region specific web pages for the application like the release notes, the help site, etc. 
  77.  *   aResourceName --> the string resource ID in region.properties to load. 
  78.  */
  79. function openRegionURL(aResourceName)
  80. {
  81.   var appInfo = Components.classes["@mozilla.org/xre/app-info;1"]
  82.                           .getService(Components.interfaces.nsIXULAppInfo);
  83.   try {
  84.     var strBundleService = Components.classes["@mozilla.org/intl/stringbundle;1"].getService(Components.interfaces.nsIStringBundleService);
  85.     var regionBundle = strBundleService.createBundle("chrome://messenger-region/locale/region.properties");
  86.     // the release notes are special and need to be formatted with the app version
  87.     var urlToOpen;
  88.     if (aResourceName == "releaseNotesURL")
  89.       urlToOpen = regionBundle.formatStringFromName(aResourceName, [appInfo.version], 1);
  90.     else
  91.       urlToOpen = regionBundle.GetStringFromName(aResourceName);
  92.       
  93.     var uri = Components.classes["@mozilla.org/network/io-service;1"]
  94.               .getService(Components.interfaces.nsIIOService)
  95.               .newURI(urlToOpen, null, null);
  96.  
  97.     var protocolSvc = Components.classes["@mozilla.org/uriloader/external-protocol-service;1"]
  98.                       .getService(Components.interfaces.nsIExternalProtocolService);
  99.     protocolSvc.loadUrl(uri);
  100.   } catch (ex) {}
  101. }
  102.  
  103. /**
  104.  *  Fetches the url for the passed in pref name, formats it and then loads it in the default
  105.  *  browser.
  106.  *
  107.  *  @param aPrefName - name of the pref that holds the url we want to format and open
  108.  */
  109. function openFormattedRegionURL(aPrefName)
  110. {
  111.   var formattedUrl = getFormattedRegionURL(aPrefName);
  112.   
  113.   var uri = Components.classes["@mozilla.org/network/io-service;1"].
  114.                        getService(Components.interfaces.nsIIOService).
  115.                        newURI(formattedUrl, null, null);
  116.  
  117.   var protocolSvc = Components.classes["@mozilla.org/uriloader/external-protocol-service;1"].
  118.                                getService(Components.interfaces.nsIExternalProtocolService);
  119.   protocolSvc.loadUrl(uri);  
  120. }
  121.  
  122. /**
  123.  *  Fetches the url for the passed in pref name and uses the URL formatter service to 
  124.  *    process it.
  125.  *
  126.  *  @param aPrefName - name of the pref that holds the url we want to format and open
  127.  *  @returns the formatted url string
  128.  */
  129. function getFormattedRegionURL(aPrefName)
  130. {
  131.   var formatter = Components.classes["@mozilla.org/toolkit/URLFormatterService;1"].
  132.                              getService(Components.interfaces.nsIURLFormatter);
  133.   return formatter.formatURLPref(aPrefName);
  134. }
  135.  
  136. function launchBrowser(UrlToGoTo)
  137. {
  138.   if (!UrlToGoTo) {
  139.     return;
  140.   }
  141.  
  142.   // 0. Prevent people from trying to launch URLs such as javascript:foo();
  143.   //    by only allowing URLs starting with http or https.
  144.   // XXX: We likely will want to do this using nsIURLs in the future to
  145.   //      prevent sneaky nasty escaping issues, but this is fine for now.
  146.   if (UrlToGoTo.indexOf("http") != 0) {
  147.     Components.utils.reportError ("launchBrowser: " +
  148.                                   "Invalid URL provided: " + UrlToGoTo +
  149.                                   " Only http:// and https:// URLs are valid.");
  150.     return;
  151.   }
  152.  
  153.   var externalLoader =
  154.     (Components
  155.      .classes["@mozilla.org/uriloader/external-protocol-service;1"]
  156.      .getService(Components.interfaces.nsIExternalProtocolService));
  157.   var nsURI = (Components
  158.                .classes["@mozilla.org/network/io-service;1"]
  159.                .getService(Components.interfaces.nsIIOService)
  160.                .newURI(UrlToGoTo, null, null));
  161.   externalLoader.loadUrl(nsURI);
  162. }
  163.